html {
    font-family: monospace;
}

body {
    margin: 0;
}

header {
    padding: 10px;
    background-color: rgb(154, 253, 145);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-button {
    width: 40px;
    height: 40px;
}

.profile-picture {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

.profile-picture.large {
    width: 50px;
    height: 50px;
}

#page-content {
    padding: 10px;
    max-width: 800px;
    margin: auto;
}

#messages-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#messages-list > li {
    background-color: rgb(100, 100, 255);
    padding: 5px 10px 5px 10px;
    border-radius: 4px;
    margin: 10px;
    width: fit-content;
}

#messages-list > li:nth-child(2n) {
    background-color: rgb(255, 111, 111);
    margin-left: auto;
}

#messages-list > li > h3,
#messages-list > li > p {
    margin-bottom: 5px;
    margin-top: 5px;
}

#send-message-form {
    
}